tests: Add new test checking weird behavior for declarations
authorBenjamin Otte <otte@redhat.com>
Sat, 9 Apr 2011 23:52:58 +0000 (01:52 +0200)
committerBenjamin Otte <otte@redhat.com>
Wed, 18 May 2011 19:58:44 +0000 (21:58 +0200)
tests/css/parser/Makefile.am
tests/css/parser/declarations.css [new file with mode: 0644]
tests/css/parser/declarations.errors [new file with mode: 0644]
tests/css/parser/declarations.ref.css [new file with mode: 0644]

index 934d95ae51073218744031104b4f3f3cd884e028..ca40b4694ef028fb882000c755f821220dc3a6a6 100644 (file)
@@ -31,6 +31,9 @@ EXTRA_DIST += \
        close-at-end-of-file.css \
        close-at-end-of-file.errors \
        close-at-end-of-file.ref.css \
+       declarations.css \
+       declarations.errors \
+       declarations.ref.css \
        does-not-exist.css \
        does-not-exist.errors \
        does-not-exist.ref.css \
diff --git a/tests/css/parser/declarations.css b/tests/css/parser/declarations.css
new file mode 100644 (file)
index 0000000..05fc0e5
--- /dev/null
@@ -0,0 +1,50 @@
+a { ;;; }
+
+b { }
+
+c {
+}
+
+d { ; int-property: 42; }
+
+e {
+  int-property: 42;
+  ;
+  ;
+  ;
+  uint-property: 42;
+}
+
+f {
+  int-property: 42
+}
+
+g { int-property: 42 }
+
+h { int-property }
+
+i { int-property; }
+
+j { int-property: }
+
+k { int-property : }
+
+l { int-property: ; }
+
+m { int-property:; }
+
+n { int-property: ; }
+
+h { int-property uint-property: 42; }
+
+i { int-property; uint-property: 42; }
+
+j { int-property: uint-property: 42; }
+
+k { int-property : uint-property: 42; }
+
+l { int-property: uint-property: 42; }
+
+m { int-property:; uint-property: 42; }
+
+n { int-property: ; uint-property: 42; }
diff --git a/tests/css/parser/declarations.errors b/tests/css/parser/declarations.errors
new file mode 100644 (file)
index 0000000..0b36cbf
--- /dev/null
@@ -0,0 +1,14 @@
+declarations.css:24: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
+declarations.css:26: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
+declarations.css:28: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
+declarations.css:30: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
+declarations.css:32: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
+declarations.css:34: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
+declarations.css:36: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
+declarations.css:38: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
+declarations.css:40: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
+declarations.css:42: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
+declarations.css:44: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
+declarations.css:46: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
+declarations.css:48: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
+declarations.css:50: error: GTK_CSS_PROVIDER_ERROR_SYNTAX
diff --git a/tests/css/parser/declarations.ref.css b/tests/css/parser/declarations.ref.css
new file mode 100644 (file)
index 0000000..9274798
--- /dev/null
@@ -0,0 +1,28 @@
+d {
+  int-property: 42;
+}
+
+e {
+  int-property: 42;
+  uint-property: 42;
+}
+
+f {
+  int-property: 42;
+}
+
+g {
+  int-property: 42;
+}
+
+i {
+  uint-property: 42;
+}
+
+m {
+  uint-property: 42;
+}
+
+n {
+  uint-property: 42;
+}